home *** CD-ROM | disk | FTP | other *** search
- *** ./xargs/xargs.c Fri Oct 7 10:21:39 1994
- --- ../findutils-4.1/./xargs/xargs.c Tue May 5 22:19:09 1998
- ***************
- *** 83,90 ****
-
- /* COMPAT: SYSV version defaults size (and has a max value of) to 470.
- We try to make it as large as possible. */
- ! #if !defined(ARG_MAX) && defined(_SC_ARG_MAX)
- ! #define ARG_MAX sysconf (_SC_ARG_MAX)
- #endif
- #ifndef ARG_MAX
- #define ARG_MAX NCARGS
- --- 83,93 ----
-
- /* COMPAT: SYSV version defaults size (and has a max value of) to 470.
- We try to make it as large as possible. */
- ! #if defined(_SC_ARG_MAX)
- ! # if defined(ARG_MAX)
- ! # undef ARG_MAX
- ! # endif
- ! # define ARG_MAX sysconf (_SC_ARG_MAX)
- #endif
- #ifndef ARG_MAX
- #define ARG_MAX NCARGS
-